home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Inspectors / AIInspector / AIInspector.h < prev    next >
Text File  |  1995-06-12  |  586b  |  30 lines

  1.  
  2. /*
  3.  * AIInspector.h
  4.  *
  5.  * AIInspector is a subclass of WMInspector responsible for handling
  6.  * the new and revert: messages from the Workspace Manager.
  7.  *
  8.  *
  9.  * You may freely copy, distribute, and reuse the code in this example.
  10.  * Both Terrence Talbot and Digital Tool Works disclaim any warranty
  11.  * of any kind, expressed or implied, as to its fitness for any particular use.
  12.  *
  13.  * Written by:  Terrence Talbot 
  14.  *    Created:  Oct/92
  15.  *
  16.  */
  17.  
  18. #import <apps/Workspace.h>
  19. #import "AIView.h"
  20.  
  21. @interface AIInspector:WMInspector
  22. {
  23.    AIView  *myAIView;
  24. }
  25.  
  26. + new;
  27. - revert:sender;
  28.  
  29. @end
  30.